home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-12 | 403 b | 32 lines |
- #
- # QOS Makefile for DJGPP.
- #
-
- CFLAGS= -O -c -DMSDOS
-
- all: makefile.tag xsetroot.exe
-
- O = xsetroot.o
-
- .c.o:
- gcc $(CFLAGS) $<
-
- L = -lxmu -lx11 -lsys
-
- xsetroot.exe : makefile.tag $(O)
- gcc -o xsetroot $(O) $(L)
- strip xsetroot
- coff2exe xsetroot
- del xsetroot
-
- makefile.tag:
- del *.tag
- del *.obj
- del *.o
- del *.map
- del *.exp
- del *.exe
- del *.rsp
- echo >makefile.tag
-